From 3561a9393f76cb5da09d490d4b5ebc32abdab6bf Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 18 Mar 2008 18:43:03 +0000 Subject: [PATCH] *Use page_touched to deal with client side history caching min timestamp. This handles imports/revisiondelete/deletion/tagging properly. (bug 13403) --- includes/PageHistory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/PageHistory.php b/includes/PageHistory.php index 23bd9440f8..6fc82b2579 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -65,7 +65,7 @@ class PageHistory { * Allow client caching. */ - if( $wgOut->checkLastModified( $this->mArticle->getTimestamp() ) ) + if( $wgOut->checkLastModified( $this->mArticle->getTouched() ) ) /* Client cache fresh and headers sent, nothing more to do. */ return; -- 2.20.1